/* Footer */
   .brand-group {
  display: flex;
  align-items: center;
  gap: 18px;           /* space between name and icons */
  flex-wrap: wrap;     /* if screen is narrow, icons wrap below */
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  white-space: nowrap; /* keep name on one line until it must wrap */
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;           /* gap between each icon */
  flex-shrink: 0;      /* stops icons from shrinking if name grows */
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
  .social-icons img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
  }

    body {
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
footer {
  background: white;
  color: black;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.footer-logo {
  max-width: 150px;
}

.footer-column h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: black;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ddd;
  font-size: 0.9em;
  background: #f9f9f9;
}

/* Footer animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}